home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILREEN / GHSCRIPT.LZH / QHOSTSCR.EXE / ERRORS.H < prev    next >
Text File  |  1989-10-28  |  2KB  |  51 lines

  1. /* Copyright (C) 1989 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* errors.h */
  21. /* Define error codes for GhostScript */
  22.  
  23. /* A procedure that may return an error always returns */
  24. /* a non-negative value (zero, unless otherwise noted) for success, */
  25. /* or negative for failure. */
  26. /* We use ints rather than an enum to avoid a lot of casting. */
  27. #define e_dictfull (-2)
  28. #define e_dictstackoverflow (-3)
  29. #define e_dictstackunderflow (-4)
  30. #define e_execstackoverflow (-5)
  31. #define e_interrupt (-6)
  32. #define e_invalidaccess (-7)
  33. #define e_invalidexit (-8)
  34. #define e_invalidfileaccess (-9)
  35. #define e_invalidfont (-10)
  36. #define e_invalidrestore (-11)
  37. #define e_ioerror (-12)
  38. #define e_limitcheck (-13)
  39. #define e_nocurrentpoint (-14)
  40. #define e_rangecheck (-15)
  41. #define e_stackoverflow (-16)
  42. #define e_stackunderflow (-17)
  43. #define e_syntaxerror (-18)
  44. #define e_timeout (-19)
  45. #define e_typecheck (-20)
  46. #define e_undefined (-21)
  47. #define e_undefinedfilename (-22)
  48. #define e_undefinedresult (-23)
  49. #define e_unmatchedmark (-24)
  50. #define e_VMerror (-25)
  51.